home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr13 / afv95.zip / VIDEO.H < prev   
C/C++ Source or Header  |  1995-02-12  |  467b  |  31 lines

  1. #ifndef VIDEO_H
  2. #define VIDEO_H    1
  3.  
  4. #include "utype.h"
  5.  
  6. void    VidInit(int font8x8);
  7. void    VidTerm();
  8.  
  9. uint    VidRows();
  10.  
  11. void    VidDefData(uint base, uint lines);
  12.  
  13. void    VidSearch(char *text);
  14. int    VidFound();
  15. uint    FndLine();
  16.  
  17. void    VidCursor(uint curoff);
  18.  
  19. void    VidRefresh(uint topline);
  20.  
  21. void    VidTopLine(char *text);
  22. void    VidBotLine(char *text);
  23.  
  24. int    VidInput(char *prompt, char *buf, uint size);
  25.  
  26. void    VidBL79(char c);
  27.  
  28. void    VidHelp();
  29.  
  30. #endif
  31.